home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Spare Stack Pages.xpl < prev    next >
Text File  |  2000-11-11  |  1KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="System\Memory"
  5. "NAME"="Spare Stack Pages"
  6. "OSVERSION"="10101"
  7. "VERSION"="1.10"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Spare Stacks"
  10. "DESCRIPTION 1"="For Win9x/ME: If an error message occurs that 'there are no spare stack pages', a device driver may need more memory pages than the default of 4k [1 page]."
  11. "DESCRIPTION 2"="Set the number of spare stack pages starting with a value of 4. If the spare stack error re-occurs increase the value by increments of 4 (for example, 8, 12, 16)."
  12. "DESCRIPTION 3"="For additional information, see MSKB article: 'There Are No Spare Stack Pages' at http://support.microsoft.com/support/kb/articles/Q149/0/83.asp."
  13. "AUTHOR"="Ojatex@aol.com"
  14. "CONTACTURL"="http://members.aol.com/ojatex/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com."
  17. "COMMENT 2"="Thanks to CptSiskoX for plugin suggestion."
  18.  
  19. sf="SYSTEM.INI"
  20. ss="386Enh"
  21. v1="MinSPs"
  22.  
  23.  
  24. Sub Plugin_Initialize 
  25.   i=IniReadValue(sf,ss,v1)
  26.   SetUIElement 1,i
  27. End Sub
  28.  
  29. Sub Plugin_CheckData(ElementIndex)
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  i=GetUIElement(1)
  34.  if len(i)=0 then
  35.     Call IniWriteValue(sf,ss,v1,"")
  36.  else
  37.     Call IniWriteValue(sf,ss,v1,i)
  38.  end if
  39.  
  40.  
  41.  Restart
  42. End Sub
  43.  
  44. Sub Plugin_Terminate 
  45. End Sub
  46.  
  47.  
  48.  
  49.